home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monkey Grafik & Sound
/
MonkeyAudio 06-1994.iso
/
grafik
/
bfed11
/
unpack.bat
< prev
Wrap
DOS Batch File
|
1994-05-26
|
846b
|
32 lines
@ECHO OFF
break on
ECHO *********************************************
ECHO Bitte wählen Sie eine der folgenden Optionen:
ECHO ---------------------------------------------
ECHO "1" entpacken auf Festplatte C:\BFED11
ECHO ---------------------------------------------
ECHO "2" entpacken auf Festplatte D:\BFED11
ECHO ---------------------------------------------
ECHO "3" entpacken auf Festplatte E:\BFED11
ECHO ---------------------------------------------
ECHO Mit STRG-C brechen Sie ab
ECHO *********************************************
Choice /N /C:123
IF Errorlevel 3 goto inste
If Errorlevel 2 goto instd
If Errorlevel 1 goto instc
:inste
md e:\bfed11
pkunzip -d *.zip e:\bfed11
goto ende
:instd
md d:\bfed11
pkunzip -d *.zip d:\bfed11
goto ende
:instc
md c:\bfed11
pkunzip -d *.zip c:\bfed11
goto ende
:ende